/* search and pills wrapper */
.search-and-pills-wrapper{
    display: grid;
    grid-template-columns: repeat(1,1fr);
}
.search-and-pills-wrapper .search-section{
    order: 2;
}
.search-and-pills-wrapper .search-pills-section{
    order: 1;
}
/* search and pills wrapper */
.search-section{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    row-gap: 10px;
    padding: 0px 15px 25px 15px;
}
.search-wrapper{
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    border: 1px solid #848198;
    padding-left: 20px;
    
}
.search-wrapper .search-btn{
    background: #090416;
    box-shadow: 0px 2px 6px rgba(9, 5, 61, 0.12);
    outline: none;
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
    padding: 10px 24px;
}
.search-section .search-filed{
    border: none;
    outline: none;
    width: 100%;
    padding: 10px;
    background: #ffffff;
}
.search-section .add-work{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    filter: drop-shadow(0px 2px 6px rgba(9, 5, 61, 0.12));
    outline: none;
    padding: 13px 23px;
    background: #FFFFFF;
    font-size: 16px;
    color: #090416;
    border: 1px solid #848198;
    text-decoration: none !important;
    color: inherit !important;
}
.add-work-wrapper .search-wrapper .search-btn{
    box-shadow: none;
}
@media (min-width: 992px){
/* search and pills wrapper */
.search-and-pills-wrapper .search-section{
    order: 1;
}
.search-and-pills-wrapper .search-pills-section{
    order: 2;
}
/* search and pills wrapper */
.search-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 30px 0px;
}
.search-wrapper{
    min-width: 537px;
}
.add-work-wrapper .search-section .add-work{
    padding: 11px 23px;
}
}